home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Basic / Visual Basic.60 / COMMON / TOOLS / VB / OLEMSG / TMCRDCMN.BAS < prev    next >
Encoding:
BASIC Source File  |  1996-06-15  |  729 b   |  21 lines

  1. Attribute VB_Name = "common"
  2. Option Explicit
  3.  
  4. 'named property names
  5. Global Const CatPropName As String = "ReportCategories"
  6. Global Const NumCatPropName As String = "NumReportCategories"
  7. Global Const PayPeriodPropName As String = "PayPeriod"
  8. Global Const RepDataPropPrefix As String = "ReportedTime"
  9. '$for testing
  10. 'Global Const NamePropName As String = "UserName"
  11.  
  12. 'messages class names
  13. 'request is an IPM message so that a user can see it in the inbox
  14. Global Const RequestMsgType = "IPM.TimeCardSample.Request"
  15. 'report is an IPC message
  16. Global Const ReportMsgType = "IPC.TimeCardSample.Report"
  17.  
  18. 'vb constants for mouse pointer
  19. Global Const WaitCursor As Integer = 11
  20. Global Const DefaultCursor As Integer = 0
  21.